home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Dev / misc / LOCCounter.lha / LOCCounter / src / Main.h < prev    next >
C/C++ Source or Header  |  2004-08-18  |  693b  |  33 lines

  1. #ifndef LOC_MAIN_H
  2. #define LOC_MAIN_H
  3. /****************************************************************************
  4. *
  5. * $RCSfile: Main.h $
  6. * $Revision: 2.6 $
  7. * $Date: 2004/08/18 20:45:22 $
  8. * $Author: ssolie $
  9. *
  10. *****************************************************************************
  11. *
  12. * Copyright (c) 2004 Steven Solie.  All Rights Reserved.
  13. *
  14. *****************************************************************************
  15. *
  16. * C++ LOC Counter main component
  17. */
  18.  
  19. #include <exec/types.h>
  20.  
  21.  
  22. /*** Global constants ***/
  23. static const uint32 MAX_FILE_NAME_LEN     = 256;
  24. static const uint32 MAX_LINE_LEN         = 1024;     // characters per line
  25.  
  26.  
  27. /*** Global exceptions ***/
  28. class dos_error {
  29. };
  30.  
  31.  
  32. #endif
  33.